Used to define an Extension dll and configure its loading settings
EXTENSION
Used to define an Extension dll and configure its loading settings
|
Name | Type | Use | Default | Fixed | Description |
---|---|---|---|---|---|
delayload | Restriction of xs:string | optional | true | Specified whether to delay the loading of the extension dll. | |
enabled | Restriction of xs:string | optional | true | Specifies if the extension is enabled or not. |
From a C++ perspective, all extensions/module implement APExGetProperty() that tell ArcPad what those extensions do. When we load an extension/module record what each extensions's responses were to APExGetProperty() and save them to ExtensionPrefs.apx.
In <EXTENSION> tag, users can set the value of two attributes: delayload and enabled.All other attributes are information of reponses to APExGetProperty() saved by ArcPad when extensions are loaded.
In <EXTENSION> tag, users can set the value of two attributes: delayload and enabled.All other attributes are information of reponses to APExGetProperty() saved by ArcPad when extensions are loaded.
|